update

FFIB 1 年之前
父节点
当前提交
2cef602dc4
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      member/models.py

+ 3 - 3
member/models.py

@@ -918,9 +918,9 @@ class MemberActivityContributionInfo(BaseModelMixin, BrandInfoMixin):
918 918
     UNPASSED = 2
919 919
 
920 920
     AUDIT_STATUS = (
921
-        (UNAUDITED, '未审核'),
922
-        (PASSED, '已通过'),
923
-        (UNPASSED, '未通过'),
921
+        (0, '未审核'),
922
+        (1, '已通过'),
923
+        (2, '未通过'),
924 924
     )
925 925
 
926 926
     contribution_id = ShortUUIDField(_(u'contribution_id'), max_length=32, blank=True, null=True, help_text=u'投稿唯一标识', db_index=True, unique=True)